Add TAL-Reverb-II plugin to test
[juce-lv2.git] / juce / source / extras / browser plugins / wrapper / juce_IncludeBrowserPluginInfo.h
blob00c0b20d4438a9429ec7f0219a11c82ac0ab50f2
1 /*
2 ==============================================================================
4 This file is part of the JUCE library - "Jules' Utility Class Extensions"
5 Copyright 2004-11 by Raw Material Software Ltd.
7 ------------------------------------------------------------------------------
9 JUCE can be redistributed and/or modified under the terms of the GNU General
10 Public License (Version 2), as published by the Free Software Foundation.
11 A copy of the license is included in the JUCE distribution, or can be found
12 online at www.gnu.org/licenses.
14 JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 ------------------------------------------------------------------------------
20 To release a closed-source product which uses JUCE, commercial licenses are
21 available: visit www.rawmaterialsoftware.com/juce for more information.
23 ==============================================================================
26 #ifndef __JUCE_INCLUDEBROWSERPLUGININFO_JUCEHEADER__
27 #define __JUCE_INCLUDEBROWSERPLUGININFO_JUCEHEADER__
29 #include "BrowserPluginCharacteristics.h"
32 //==============================================================================
33 // The following macros just cause a compile error if you've forgotten to
34 // define all your plugin settings properly.
36 #if ! (defined (JuceBrowserPlugin_Name) \
37 && defined (JuceBrowserPlugin_Desc) \
38 && defined (JuceBrowserPlugin_Company) \
39 && defined (JuceBrowserPlugin_MimeType) \
40 && defined (JuceBrowserPlugin_MimeType_Raw) \
41 && defined (JuceBrowserPlugin_FileSuffix) \
42 && defined (JuceBrowserPlugin_Version) \
43 && defined (JuceBrowserPlugin_WinVersion))
44 #error "You haven't defined all the necessary JuceBrowserPlugin_xx values in your BrowserPluginCharacteristics.h file!"
45 #endif
47 #endif // __JUCE_INCLUDEBROWSERPLUGININFO_JUCEHEADER__